home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / internet / temafire / Red Cats (green flavor).jar / help / helpFileLayout.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-11-04  |  3.1 KB  |  116 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Help CSS
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * R.J. Keller
  18.  * Portions created by the Initial Developer are Copyright (C) 2003
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *      Jeff Walden <jwalden+code@mit.edu>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. @import url('chrome://help/content/platformClasses.css');
  39.  
  40. body {
  41.     margin: 2ex;
  42.     color: black;
  43.     font-family: sans-serif;
  44.     font-size: 0.75em;
  45.     max-width: 120ex;
  46. }
  47.  
  48. :link:hover { color: red; }
  49.  
  50. a[href^="http://"]:after { 
  51.     content: url('chrome://help/skin/Weblink.png');
  52.     margin-left: 3px; 
  53. }
  54.  
  55. h1 { font-size: 2em; }
  56. h2 { border-top: 1px solid black; font-size: 1.75em; }
  57. h3 { color: #009; font-size: 1em; margin-bottom: 0px; margin-top: 35px; }
  58.  
  59. dt { font-weight: bold; }
  60.  
  61. p {
  62.     text-indent: 15px;
  63. }
  64.  
  65. .contentsBox, 
  66. .contentsBox > ul,
  67. li {
  68.     text-indent: 0px;
  69. }
  70.  
  71. .contentsBox > ul,
  72. .contentsBox ul > ul{
  73.     margin: 0 0 0 0;
  74.     list-style-type: none;
  75. }
  76.  
  77. .contentsBox {
  78.     margin-top: 12px;
  79.     background-color: #cccccc;
  80.     border: 1px solid black;
  81.     width: 300px;
  82.     padding: 1em;
  83. }
  84.  
  85. .makeLeftMargin {
  86.     margin-left: 25px;
  87. }
  88.  
  89. .menuPath {
  90.   background: #c4d0f4; /* bluish color */
  91.   color: inherit;
  92.   padding-left:  1px; /* else bgcolor ends at last char - no space */
  93.   padding-right: 1px;
  94. }
  95.  
  96. table {
  97.     background-color: #eeeeee;    /* really light grey */
  98. }
  99.  
  100. td {
  101.     border: 1px solid #999999;    /* grey */
  102.     vertical-align: top;
  103. }
  104.  
  105. th {
  106.     background-color: #99ccff;    /* light aqua */
  107.     font-weight: bold;
  108. }
  109.  
  110. .noTableBorder,
  111. .noTableBorder td,
  112. .noTableBorder th {
  113.     background-color: transparent;
  114.     border: 0px solid transparent;
  115. }
  116.